home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / Extras / Development / RKM_Companion_v2.04 / Keymap / smakefile < prev   
Encoding:
Makefile  |  1996-03-20  |  248 b   |  19 lines

  1. .asm.o:
  2.     asm $(AFLAGS) $<
  3.  
  4. CFLAGS = nostackcheck structureequivalence ignore=73
  5.  
  6. all: mapansi maprawkey d
  7.  
  8. mapansi: mapansi.c
  9.     sc link $(CFLAGS) $@
  10.  
  11. maprawkey: maprawkey.c
  12.     sc link $(CFLAGS) $@
  13.  
  14. d: d.o
  15.     slink d.o to $@
  16.  
  17. clean:
  18.     -delete \#?.(o|lnk)
  19.